home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / gengetopt-2.6.lha / gengetopt-2.6 / src / gengetopt_strdup.text < prev    next >
Text File  |  2001-12-17  |  309b  |  12 lines

  1. /* gengetopt_strdup(): automatically generated from strdup.c. */
  2. /* strdup.c replacement of strdup, which is not standard */
  3. static char *
  4. gengetopt_strdup (const char *s)
  5. {
  6.   char *result = (char*)malloc(strlen(s) + 1);
  7.   if (result == (char*)0)
  8.     return (char*)0;
  9.   strcpy(result, s);
  10.   return result;
  11.